home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / bbsutil / hsrc_117.zip / MAKEMGID.C < prev    next >
Text File  |  1990-11-27  |  177b  |  13 lines

  1. #include <time.h>
  2.  
  3.  
  4. long make_msgid (void) {
  5.  
  6.     time_t t;
  7.     static unsigned int counter=0;
  8.  
  9.     (void)time(&t);
  10.     t = (t<<4) | (counter++ & 15);
  11.     return t;
  12. }
  13.